home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBCalendar / ButtonControl.cpp next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.2 KB  |  49 lines

  1. /**********************************************
  2. HTBCALENDAR.DLL
  3.  
  4. ButtonControl.cpp
  5.  
  6. TransEra Corporation 1999.
  7. This is the source for the HTBCalendar Dll.
  8. ***********************************************/
  9. #include "stdafx.h"
  10. #include "HTBCalendar.h"
  11. #include "ButtonControl.h"
  12.  
  13. #ifdef _DEBUG
  14. #define new DEBUG_NEW
  15. #undef THIS_FILE
  16. static char THIS_FILE[] = __FILE__;
  17. #endif
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // ButtonControl dialog
  21.  
  22.  
  23. ButtonControl::ButtonControl(CWnd* pParent /*=NULL*/)
  24.     : CDialog(ButtonControl::IDD, pParent)
  25. {
  26.     //{{AFX_DATA_INIT(ButtonControl)
  27.         // NOTE: the ClassWizard will add member initialization here
  28.     //}}AFX_DATA_INIT
  29. }
  30.  
  31.  
  32. void ButtonControl::DoDataExchange(CDataExchange* pDX)
  33. {
  34.     CDialog::DoDataExchange(pDX);
  35.     //{{AFX_DATA_MAP(ButtonControl)
  36.     DDX_Control(pDX, IDC_BUTTON2, m_ButtonControl);
  37.     //}}AFX_DATA_MAP
  38. }
  39.  
  40.  
  41. BEGIN_MESSAGE_MAP(ButtonControl, CDialog)
  42.     //{{AFX_MSG_MAP(ButtonControl)
  43.         // NOTE: the ClassWizard will add message map macros here
  44.     //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // ButtonControl message handlers
  49.